/* body */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #5a727a;
    color: #ededed;
} 



/* navbar */



.header {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    padding: 20px 8%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    position: relative;
    text-decoration: none;
    color: #ededed;
    font-size: 23px;
    font-weight: 700;
}


.logo::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #7696a1;
    animation: showRight 1s forwards;
    animation-delay: .2s;
}


.navbar a {
    letter-spacing: 1.2px;
    text-decoration: none;
    font-size: 19px;
    color: #ededed;
    font-weight: 500;
    margin-left: 35px;
}

.navbar a:hover, .navbar a.active  {
    color: #00abf0;
    border-bottom: 2px solid #00abf0;

}


/* content */


.home {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 10%;
}

.home-content > h1 {
    position: relative;
    font-size: 56px;
    font-weight: 700;
}

.home-content h1::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #7696a1;
    animation: showRight 1s forwards;
    animation-delay: .4s;
}

.home-content > h3 {
    position: relative;
    font-size: 28px;
    font-weight: 700;
    color: #00abf0;
}

.home-content h3::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #7696a1;
    animation: showRight 1s forwards;
    animation-delay: .6s;
}

.myimg >img {
    border-radius: 50%;
    margin-top: 25vh;
    float: right;
    margin-right: 7%;
}

.home-content > p {
    position: relative;
    font-size: 16px;
    margin: 20px 0 50px;
    line-height: 1.2;
}




.home-content p::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #7696a1;
    animation: showRight 1s forwards;
    animation-delay: .8s;
}



.home-content .btn-box {
    display: flex;
    justify-content: space-between;
    width: 350px;
    height: 50px;
}


.btn-box > a{
    position: relative;
    display: inline-flex;
    text-decoration: none;
    background-color: #00abf0;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    width: 150px;
    height: 100%;
    font-size: 19px;
    font-weight: 600;
    align-items: center;
    color: #ffffff;
    z-index: 1;
    border: solid 2px #00abf0;
    overflow: hidden;
}

.btn-box a:hover{
    color: #00abf0;
}


.btn-box a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #ffffff;
    z-index: -1;
    transition: .1s;
}

.btn-box a:hover::before{
    height: 100%;
}


/* linkedin */

.home-sci {
    position: absolute;
    bottom: 40px;
    width: 170px;
    border-radius: 10px;
}

.home-sci > a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background-color: transparent;
    border: solid;
    font-size: rem;
    border-radius: 50%;
    margin-left: 10px;
    color: #193c4a;


}



/* animations */


@keyframes showRight {
    100% {
        width: 0;
    }
}
